home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Concept 6
/
CD Concept 06.iso
/
mac
/
UTILITAIRE
/
RLaB
/
rlib
/
clearall.r
< prev
next >
Wrap
Text File
|
1994-09-20
|
767b
|
32 lines
//-------------------------------------------------------------------//
// Synopsis: Clear all the variables from the workspace.
// Syntax: clearall ( )
// Description:
// The function clearall, clears all data objects from the workspace.
// Scalars, strings, matrices, and lists are cleared with the clear
// function. User function are not affected by clearall. If you wish
// to remove user functions you must do so explicitly with clear.
//
// See Also: clear
//-------------------------------------------------------------------//
clearall = function ( )
{
for (i in members ($$))
{
if (class ($$.[i]) != "function")
{
if (i != "pi" && i != "eps" && i != "_rlab_search_path")
{
clear ($$.[i]);
}
}
}
};